-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add AddToFrameworkScheme function for the test framework #393
Conversation
8e41c69
to
7352f48
Compare
f288683
to
851e600
Compare
I just removed all the functions that are now unnecessary due to the dynamic client. |
LGTM |
"testing" | ||
"time" | ||
|
||
operator "github.com/operator-framework/operator-sdk/test/test-framework/pkg/apis/cache/v1alpha1" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
group all "github.com/operator-framework/operator-sdk/*
together. So no new line here.
framework "github.com/operator-framework/operator-sdk/pkg/test" | ||
"github.com/operator-framework/operator-sdk/pkg/util/e2eutil" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
new line between line 26 and 27
lgtm after nits |
This PR adds a function that allows user to register their custom resources with the test framework's dynamic client and use the dynamic client directly with their custom resources.
Part of issue #387.